My question is regarding the use of command line arguments. As we know that argc and argv[] can be used as arguments to be passed to main(), so whether argv[] should only be arrays of pointers to chars or whether can it be simply an integer array???
So whether main() function like this:
Code:
int main(int argc,long int argv[])
is ok??